Contents | Index | < Browse | Browse >
LETTERstrcatULETTER
Concatenates strings.
Overview
#include <string.h>
r = strcat (s,t);
char *r;
char *s;
char *t;
Portability
ANSI
Description
This function appends the string "t" to the string "s". "s"'s size must be at
least the size of "t" plus the size of "s" and the trailing zero byte.
Returns
A pointer to "s".